home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2000 June / CyberMycha0006.iso / NFSPorsche / data1.cab / Program_Files / FEDATA / Controls / Control Template.txt < prev    next >
Text File  |  2000-03-27  |  3KB  |  98 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;
  3. ; Standard Control Template
  4. ;
  5. ; This template is provided to make sure all controls share similar functionality.  
  6. ; A description would go here to explain what the control is used for and any
  7. ; special traits it has.
  8. ;
  9. ; Created by Gary Steinke, May 21/99
  10. ;
  11. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21. ;;;WHEN YOU USE THE TEMPLATE, REMEMBER TO REMOVE ALL COMMENTS BELOW THIS POINT!!!!!!!!!!!!!!!!!!!!!!!!
  22. ;;;  they don't seem to work with the current version of FERT.  
  23. ;;;
  24. ;;; you CAN leave the end of file, though
  25.  
  26.  
  27.  
  28. [control]
  29. id=NFS5.Something
  30. description=put description here
  31.  
  32. parts=data
  33. ; All the parts described in this file.  A data part should almost always be included.
  34. ; Note: The list of parts MUST go here, without even a comment between it and description.
  35.  
  36. name.value=ID_PUTDEFAULTNAMEHERE
  37.  
  38. ; These are the 5 states supported currently by NFS.  Other states can be added and
  39. ; will be treated as custom states.
  40. ;
  41. ; Only include hover if you support it, as it would cause a unneccisary performance hit otherwise.
  42. ; The rest of the states should be included even if they are not currently used to allow the possibility
  43. ; of extra functionality in the future.
  44. states=normal,hidden,hover,selected,disabled
  45. states.flags=0
  46.  
  47. size.value=100,150
  48. size.flags=0
  49. moveable.value=1
  50. moveable.flags=HIDDEN|READONLY
  51. resizeable.value=1
  52. resizeable.flags=HIDDEN|READONLY
  53. pos=0,0
  54. pos.label=control.pos
  55.  
  56. ; Unless you have a very good reason.  Leave autosize as 1. 
  57. ; Otherwise things don't hide or get input as you'd usually want them to.
  58. autosize.value=1
  59. autosize.flags=HIDDEN|READONLY
  60.  
  61.  
  62. ; All states should include the data part
  63. [state.normal]
  64. parts=data
  65.  
  66. ; The parst that are active when a mouse is hovering over the control
  67. [state.hover]
  68. parts=data
  69.  
  70. ; The parts that are active when the control becomes selected (grabs control)
  71. [state.selected]
  72. parts=data
  73.  
  74. ; Only include the data part if it is hidden from view
  75. [state.hidden]
  76. parts=data
  77.  
  78. ; If disabled is not supported or not yet supported by the control, it is probably better to just make it the same as hidden.
  79. [state.disabled]
  80. parts=data
  81.  
  82.  
  83. ;All controls should include a data part if it is required.  Even if not, it is probably
  84. ;better to leave one in that is empty to allow future expansion.
  85. [part.data]
  86. id=DATA
  87. attributes.value=transon,transoff
  88. transon.type=STRING
  89. transon.value=NONE
  90. transon.label=Transition On
  91. transon.flags=0
  92. transoff.type=STRING
  93. transoff.value=SAME
  94. transoff.label=Transition Off
  95.  
  96.  
  97.  
  98. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;End of File;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;